home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
PredatorPrey
/
data_structs.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-06-22
|
623b
|
42 lines
struct cNode;
struct dData;
struct dNode;
struct Root
{
struct cNode *cNext;
};
struct Root *theRootPtr, *rCurrentPtr;
struct cNode
{
struct cNode *cNext;
struct dNode *dNext;
short cCount;
double_t runConst;
};
struct cNode *cCurrentPtr, *cTempPtr;
struct dNode
{
struct dNode *dNext;
short dCount; /* how many data point sets */
short dataCount; /* how many data values per set */
double_t runData;
//struct dData *daNext;
};
struct dNode *dCurrentPtr, *dTempPtr;
/*struct dData*/
/*{*/
/* double_t runData;*/
/* struct dData *daNext;*/
/*};*/
/**/
/*struct dData *daCurrentPtr, *daTempPtr;*/